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.
45 lines
744 B
45 lines
744 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;
|
|
}
|
|
}
|
|
|
|
public class DummyObjectAsCacheKey
|
|
{
|
|
public string DummyData { get; set; }
|
|
public int DummyInt { get; set; }
|
|
}
|
|
}
|
|
|
|
namespace Sail.Testing.Caching
|
|
{
|
|
[Serializable]
|
|
public class PersonCacheItem
|
|
{
|
|
public string Name { get; private set; }
|
|
|
|
private PersonCacheItem()
|
|
{
|
|
|
|
}
|
|
|
|
public PersonCacheItem(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
}
|
|
} |