Innovenergy_trunk/csharp/App/Backend/Model/Relations/User2Folder.cs

9 lines
272 B
C#

using SQLite;
namespace InnovEnergy.App.Backend.Model.Relations;
internal class User2Folder : Relation<Int64, Int64>
{
[Indexed] public Int64 UserId { get => Left ; set => Left = value;}
[Indexed] public Int64 FolderId { get => Right; set => Right = value;}
}