Skip to content
This repository has been archived by the owner on Feb 15, 2021. It is now read-only.

Commit

Permalink
Missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
geoperez committed Jul 2, 2018
1 parent faaaa61 commit 10a11da
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/Unosquare.Labs.LiteLib/LiteModel.cs
@@ -0,0 +1,12 @@
namespace Unosquare.Labs.LiteLib
{
/// <summary>
/// Base model class for ISQLiteEntity.
/// Inherit from this model if you don't want to implement the RowId property.
/// </summary>
public abstract class LiteModel : ILiteModel
{
/// <inheritdoc />
public long RowId { get; set; }
}
}

0 comments on commit 10a11da

Please sign in to comment.