using System;
using System.Linq;
using System.Text;
namespace Txgy.RBS.DTO
{
///
///
///
public partial class TimeTabDTO
{
public TimeTabDTO()
{
}
///
/// Desc:
/// Default:
/// Nullable:True
///
public int id { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public int? project_id { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string filename { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string file_content { get; set; }
}
}