17 lines
459 B
C#
17 lines
459 B
C#
using Church.Net.Entity.Interface;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Church.Net.Entity
|
|
{
|
|
public class LineMessagingAccount : IEntity
|
|
{
|
|
[Required, Key]
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string ChatToken { get; set; }
|
|
public int TotalUsage { get; set; }
|
|
public int Seq { get; set; }
|
|
}
|
|
}
|