34 lines
684 B
C#
34 lines
684 B
C#
// Copyright (c) 2015-2017 schick Informatik
|
|
// Description:
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace bsmd.database
|
|
{
|
|
public class MessageHistory
|
|
{
|
|
|
|
#region Properties
|
|
|
|
public Guid? ReportingPartyId { get; set; }
|
|
|
|
ReportingParty CreatedBy { get; set; }
|
|
|
|
public Guid EntityId { get; private set; }
|
|
|
|
public string EntityType { get; private set; }
|
|
|
|
public string EntityName { get; private set; }
|
|
|
|
public string EntityValues { get; private set; }
|
|
|
|
public DateTime Created { get; private set; }
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|