16 lines
250 B
C#
16 lines
250 B
C#
using xExceptions.Attributes;
|
|
|
|
namespace xDataService.Constants
|
|
{
|
|
public enum XRepositoryType
|
|
{
|
|
[StringValue("EF")]
|
|
EF,
|
|
|
|
[StringValue("Mongo")]
|
|
Mongo,
|
|
|
|
[StringValue("InMemory")]
|
|
InMemory
|
|
}
|
|
} |