You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/Specification/BaseNamedSpecification.cs

25 lines
605 B

6 years ago
using System;
using System.Runtime.Serialization;
namespace ZeroLevel.Specification
{
[Serializable]
[DataContract]
public abstract class BaseNamedSpecification<T> : BaseSpecification<T>
{
[DataMember]
private string _name;
6 years ago
[DataMember]
private string _description;
public string Name { get { return _name; } }
public string Description { get { return _description; } }
public BaseNamedSpecification(string name, string description)
{
_name = name;
_description = description;
}
}
}

Powered by TurnKey Linux.