yavsc/Yavsc/Interfaces/Workflow/IAccountBalance.cs

9 lines
198 B
C#
Raw Normal View History

namespace Yavsc.Interfaces
2016-07-27 10:55:44 +02:00
{
public interface IAccountBalance
{
long ContactCredits { get; set; }
decimal Credits { get; set; }
string UserId { get; set; }
}
}