You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
748 B
35 lines
748 B
using System;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace RoadFlow.Data.Model
|
|
{
|
|
[Serializable]
|
|
public class UsersRelation
|
|
{
|
|
/// <summary>
|
|
/// UserID
|
|
/// </summary>
|
|
[DisplayName("UserID")]
|
|
public string UserID { get; set; }
|
|
|
|
/// <summary>
|
|
/// OrganizeID
|
|
/// </summary>
|
|
[DisplayName("OrganizeID")]
|
|
public string OrganizeID { get; set; }
|
|
|
|
/// <summary>
|
|
/// IsMain
|
|
/// </summary>
|
|
[DisplayName("IsMain")]
|
|
public int IsMain { get; set; }
|
|
|
|
/// <summary>
|
|
/// Sort
|
|
/// </summary>
|
|
[DisplayName("Sort")]
|
|
public int Sort { get; set; }
|
|
|
|
}
|
|
}
|
|
|