12 lines
323 B
C#
12 lines
323 B
C#
namespace HermesSocketServer.Store
|
|
{
|
|
public class Policy
|
|
{
|
|
public string Id { get; set; }
|
|
public string UserId { get; set; }
|
|
public string GroupId { get; set; }
|
|
public string Path { get; set; }
|
|
public int Usage { get; set; }
|
|
public TimeSpan Span { get; set; }
|
|
}
|
|
} |