Example #1
0
        public async Task <IActionResult> GetModifiedAsync(ulong id)
        {
            var updatedAt = await _users.GetLastUpdatedAsync(id);

            if (updatedAt != null)
            {
                return(Ok(updatedAt));
            }
            else
            {
                return(NotFound());
            }
        }