2022-01-26 11:32:16 -05:00
|
|
|
|
namespace SharedLibraryCore.Dtos
|
2018-03-06 02:22:19 -05:00
|
|
|
|
{
|
|
|
|
|
public class SharedInfo
|
|
|
|
|
{
|
2019-03-31 20:56:31 -04:00
|
|
|
|
public virtual bool Sensitive { get; set; }
|
2018-06-02 00:48:10 -04:00
|
|
|
|
public bool Show { get; set; } = true;
|
2019-03-31 20:56:31 -04:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
}
|
2018-03-06 02:22:19 -05:00
|
|
|
|
}
|