Files
yavsc/Yavsc.Abstract/Workflow/IContact.cs
2018-07-16 02:36:44 +02:00

11 lines
212 B
C#

namespace Yavsc
{
using Abstract.Identity;
public interface IContact
{
IApplicationUser Owner { get; set; }
string OwnerId { get; set; }
string UserId { get; set; }
}
}