Skip to content
Snippets Groups Projects
AddLocatizationDataResponseContract.cs 676 B
Newer Older
Michal Ondrejička's avatar
Michal Ondrejička committed
using SDK.Communication;
using SDK.Enum;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;

namespace SDK.Contracts.Communication
{
    public class AddLocatizationDataResponseContract : PostResponseContract
    {
        public string Login { get; set; }

        public List<LocationResponseContract> Locations { get; set; }
    }

    public class LocationResponseContract
    {
        public long Timestamp { get; set; }

        public string Action { get; set; }

        public bool Success { get; set; }

        public string ErrorMessage { get; set; }
    }
}