add: last used category
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
using SQLite;
|
||||
|
||||
using System;
|
||||
|
||||
namespace Billing.Models
|
||||
{
|
||||
public class Category : IIdItem
|
||||
@ -14,6 +15,8 @@ namespace Billing.Models
|
||||
public string Name { get; set; }
|
||||
public long TintColor { get; set; } = TRANSPARENT_COLOR;
|
||||
public int? ParentId { get; set; }
|
||||
public DateTime? LastUsed { get; set; }
|
||||
public int? LastAccountId { get; set; }
|
||||
}
|
||||
|
||||
public enum CategoryType
|
||||
|
Reference in New Issue
Block a user