mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
601 B
38 lines
601 B
using System;
|
|
|
|
namespace Volo.Abp.Caching
|
|
{
|
|
[Serializable]
|
|
public class PersonCacheItem
|
|
{
|
|
public string Name { get; private set; }
|
|
|
|
private PersonCacheItem()
|
|
{
|
|
|
|
}
|
|
|
|
public PersonCacheItem(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
}
|
|
}
|
|
namespace Sail.Testing.Caching
|
|
{
|
|
[Serializable]
|
|
public class PersonCacheItem
|
|
{
|
|
public string Name { get; private set; }
|
|
|
|
private PersonCacheItem()
|
|
{
|
|
|
|
}
|
|
|
|
public PersonCacheItem(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
}
|
|
} |