Innovenergy_trunk/csharp/App/Backend/Relations/FolderAccess.cs

9 lines
267 B
C#
Raw Normal View History

2023-03-15 13:38:06 +00:00
using SQLite;
namespace InnovEnergy.App.Backend.Relations;
public class FolderAccess : Relation<Int64, Int64>
2023-03-15 13:38:06 +00:00
{
[Indexed] public Int64 UserId { get => Left ; init => Left = value;}
[Indexed] public Int64 FolderId { get => Right; init => Right = value;}
}