mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 01:31:19 +00:00
9 lines
161 B
C#
9 lines
161 B
C#
namespace MyCore.Interfaces.Models
|
|
{
|
|
public class Policy
|
|
{
|
|
public string Name { get; set; }
|
|
public string[] Claims { get; set; }
|
|
}
|
|
}
|