水电费
This commit is contained in:
11
Entity/Authentication/Model/Account.cs
Normal file
11
Entity/Authentication/Model/Account.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using Fantasy.Entitas;
|
||||
|
||||
namespace Fantasy;
|
||||
|
||||
public sealed class Account : Entity
|
||||
{
|
||||
public string Username { get; set; }
|
||||
public string Password { get; set; }
|
||||
public long CreateTime { get; set; }
|
||||
public long LoginTime { get; set; }
|
||||
}
|
||||
8
Entity/Authentication/Model/AccountCacheInfo.cs
Normal file
8
Entity/Authentication/Model/AccountCacheInfo.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using Fantasy.Entitas;
|
||||
|
||||
namespace Fantasy;
|
||||
|
||||
public class AccountCacheInfo : Entity
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user