-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathConstants.cs
18 lines (17 loc) · 980 Bytes
/
Constants.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Architect.DomainModeling.Generator;
internal static class Constants
{
public const string DomainModelingNamespace = "Architect.DomainModeling";
public const string DomainObjectInterfaceName = "IDomainObject";
public const string ValueObjectInterfaceTypeName = "IValueObject";
public const string ValueObjectTypeName = "ValueObject";
public const string WrapperValueObjectInterfaceTypeName = "IWrapperValueObject";
public const string WrapperValueObjectTypeName = "WrapperValueObject";
public const string IdentityInterfaceTypeName = "IIdentity";
public const string EntityTypeName = "Entity";
public const string EntityInterfaceName = "IEntity";
public const string DummyBuilderTypeName = "DummyBuilder";
public const string SerializableDomainObjectInterfaceTypeName = "ISerializableDomainObject";
public const string SerializeDomainObjectMethodName = "Serialize";
public const string DeserializeDomainObjectMethodName = "Deserialize";
}