yavsc/Yavsc.Abstract/IT/IProject.cs

14 lines
310 B
C#
Raw Normal View History

2018-08-01 06:12:42 +02:00
using System.Collections.Generic;
namespace Yavsc.Abstract.IT
{
public interface IProject
{
long Id { get; set ; }
string OwnerId { get; set; }
string Name { get; set; }
string Version { get; set; }
IEnumerable<string> GetConfigurations();
}
}