10 lines
215 B
C#
Raw Normal View History

2018-03-06 01:22:19 -06:00

2018-04-08 01:44:42 -05:00
namespace SharedLibraryCore.Dtos
2018-03-06 01:22:19 -06:00
{
public class SharedInfo
{
public virtual bool Sensitive { get; set; }
public bool Show { get; set; } = true;
public int Id { get; set; }
}
2018-03-06 01:22:19 -06:00
}