refabrique

This commit is contained in:
Paul Schneider 2016-07-20 13:52:38 +02:00
commit 817c1c151f
34 changed files with 3476 additions and 35 deletions

View file

@ -0,0 +1,10 @@
namespace Yavsc.Models
{
public interface IAccountBalance
{
long ContactCredits { get; set; }
decimal Credits { get; set; }
IApplicationUser Owner { get; set; }
string UserId { get; set; }
}
}