1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-08 06:08:20 -05:00
RaidMax 8a7c4e4cf0 refine webfront pages
finish refactor of penalty information/profile
optimize pull penalty query
start impl of quick message mapping
2019-03-31 19:56:31 -05:00

10 lines
215 B
C#

namespace SharedLibraryCore.Dtos
{
public class SharedInfo
{
public virtual bool Sensitive { get; set; }
public bool Show { get; set; } = true;
public int Id { get; set; }
}
}