Class VersionInformation
Class that represents a version's information.
Inheritance
System.Object
VersionInformation
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Fibula.Common.Contracts.Models
Assembly: Fibula.Common.Contracts.dll
Syntax
public class VersionInformation
Properties
| Improve this Doc View SourceDescription
Gets or sets the description of the version.
Declaration
[Required(ErrorMessage = "A description for the version must be speficied.")]
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Numeric
Gets or sets the numeric value of the version.
Declaration
[Required(ErrorMessage = "A numeric value for the version must be speficied.")]
public int Numeric { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |