mirror of
https://github.com/hargata/lubelog.git
synced 2026-02-03 17:53:02 -06:00
11 lines
333 B
C#
11 lines
333 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public class APIKey
|
|
{
|
|
public int Id { get; set; }
|
|
public int UserId { get; set; }
|
|
public string Name { get; set; }
|
|
public string Key { get; set; }
|
|
public List<HouseholdPermission> Permissions { get; set; } = new List<HouseholdPermission>();
|
|
}
|
|
} |