mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-29 01:01:58 +03:00
friends caching
small improvements
This commit is contained in:
@@ -8,14 +8,23 @@ using System.Windows.Input;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Shapes;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace WPImageCaching
|
||||
{
|
||||
//Beinhaltet die Informationen eines Bildes
|
||||
internal class ImageCacheItem
|
||||
[DataContract]
|
||||
public class ImageCacheItem
|
||||
{
|
||||
public ImageCacheItem()
|
||||
{
|
||||
}
|
||||
|
||||
[DataMember]
|
||||
public string LocalFilename { get; set; }
|
||||
[DataMember]
|
||||
public string ImageID { get; set; }
|
||||
[DataMember]
|
||||
public DateTime Expiration { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user