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.
39 lines
758 B
C#
39 lines
758 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Models
|
|
{
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
public partial class station_file
|
|
{
|
|
public station_file(){
|
|
|
|
|
|
}
|
|
/// <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;}
|
|
|
|
}
|
|
}
|