OpenAuth.Net/OpenAuth.Domain/UserRole.cs

15 lines
356 B
C#
Raw Normal View History

2015-10-26 21:58:12 +08:00
using System;
using System.Collections.Generic;
namespace OpenAuth.Domain
{
public partial class UserRole
{
public int Id { get; set; }
public int RoleId { get; set; }
public int UserId { get; set; }
public System.DateTime OperateTime { get; set; }
public int OperatorId { get; set; }
}
}