mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-29 01:01:58 +03:00
55 lines
1.2 KiB
C#
55 lines
1.2 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated from a template.
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Collections.Specialized;
|
|
|
|
namespace MyFriendsAround.Common.Entities
|
|
{
|
|
public partial class Friend
|
|
{
|
|
#region Primitive Properties
|
|
|
|
public virtual string Id
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public virtual string FriendName
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public virtual string FriendImageUrl
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public virtual string LocationStr
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public virtual System.DateTime LastUpdated
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|