mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-12 08:38:49 -07:00
15 lines
347 B
C#
15 lines
347 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "Availability", Namespace = "")]
|
|
[Serializable]
|
|
public class ItemAvailability
|
|
{
|
|
[XmlElement(ElementName = "sdate", IsNullable = true)]
|
|
public DateTime? StartDate;
|
|
|
|
[XmlElement(ElementName = "edate", IsNullable = true)]
|
|
public DateTime? EndDate;
|
|
}
|