Files
yavsc/Yavsc.Abstract/IT/IProject.cs
2018-08-01 06:12:42 +02:00

14 lines
310 B
C#

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();
}
}