You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
750 B
C#
37 lines
750 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Txgy.RBS.DbModel.Models;
|
|
|
|
namespace Txgy.RBS.DTO
|
|
{
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
public class StationFileDTO
|
|
{
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public int? id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public int project_id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string file_name { get; set; }
|
|
|
|
public List<StationDTO> stations { get; set; }
|
|
}
|
|
}
|