9 lines
171 B
C#
9 lines
171 B
C#
|
|
namespace SharedLibraryCore.Dtos
|
|
{
|
|
public class SharedInfo
|
|
{
|
|
public bool Sensitive { get; set; }
|
|
public bool Show { get; set; } = true;
|
|
}
|
|
} |