35 lines
786 B
C#
35 lines
786 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Runtime.Serialization;
|
|
|
|
using BS.Shared.DataContracts.Compact;
|
|
|
|
namespace BS.Shared.DataContracts
|
|
{
|
|
[DataContract]
|
|
[DebuggerDisplay("{ServiceRecord}: {RatingType}")]
|
|
|
|
public class GoalRatingDC : IDataContract
|
|
{
|
|
[DataMember]
|
|
public long? GoalRatingOid { get; set; }
|
|
|
|
[DataMember]
|
|
public long? GoalRatingVersion { get; set; }
|
|
|
|
[DataMember]
|
|
public ValueListEntryDC GoalEntry { get; set; }
|
|
|
|
[DataMember]
|
|
public RatingTypeDC RatingType { get; set; }
|
|
|
|
[DataMember]
|
|
public String Notice { get; set; }
|
|
|
|
[DataMember]
|
|
public ServiceRecordDC ServiceRecord { get; set; }
|
|
|
|
|
|
}
|
|
} |