12 lines
No EOL
275 B
C#
12 lines
No EOL
275 B
C#
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();
|
|
}
|
|
} |