mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-28 19:01:43 +03:00
16 lines
342 B
C#
16 lines
342 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
|
|
namespace MyFriendsAround.WcfREST
|
|
{
|
|
// TODO: Edit the SampleItem class
|
|
public class SampleItem
|
|
{
|
|
public int Id { get; set; }
|
|
public string StringValue { get; set; }
|
|
}
|
|
}
|