11 lines
223 B
C#
11 lines
223 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Tanshu.Accounts.Entities
|
|||
|
{
|
|||
|
public class Setting
|
|||
|
{
|
|||
|
public Guid SettingID { get; set; }
|
|||
|
public string Name { get; set; }
|
|||
|
public dynamic Details { get; set; }
|
|||
|
}
|
|||
|
}
|