15 lines
352 B
C#
15 lines
352 B
C#
using Hncore.Infrastructure.DDD;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Hncore.Pass.Vpn.Domain
|
|
{
|
|
public partial class AgreementEntity
|
|
{
|
|
public int id { get; set; }
|
|
public int user_id { get; set; }
|
|
public int status { get; set; }
|
|
public string username { get; set; }
|
|
}
|
|
}
|