Diverse Änderungen am ChatServer
This commit is contained in:
@@ -16,7 +16,7 @@ namespace BeWo.Data.Entities
|
||||
|
||||
public static string PropertyName_TeamOid = "TeamOid";
|
||||
|
||||
public static string PropertyName_IstZugestellt = "IstZugestellt";
|
||||
public static string PropertyName_IsDelivered = "IsDelivered";
|
||||
|
||||
public static string PropertyName_IstGelesen = "IstGelesen";
|
||||
|
||||
@@ -28,7 +28,7 @@ namespace BeWo.Data.Entities
|
||||
|
||||
private long? _SenderPersonOid;
|
||||
|
||||
private int _istZugestellt;
|
||||
private bool _IsDelivered;
|
||||
|
||||
private int _IstGelesen;
|
||||
|
||||
@@ -103,17 +103,17 @@ namespace BeWo.Data.Entities
|
||||
}
|
||||
}
|
||||
|
||||
public virtual int istZugestellt
|
||||
public virtual bool IsDelivered
|
||||
{
|
||||
get
|
||||
{
|
||||
return _istZugestellt;
|
||||
return _IsDelivered;
|
||||
}
|
||||
set
|
||||
{
|
||||
if (AreDifferent(_istZugestellt, value))
|
||||
if (AreDifferent(_IsDelivered, value))
|
||||
{
|
||||
_istZugestellt = value;
|
||||
_IsDelivered = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user